vcd_mosaic plot

install.packages("vcd")
data(Titanic)
Mosaic plot(모자이크 플롯)
모자이크 플롯은 복수의 categorical variable 분포 파악에 도움이 되는 시각화 방법이다.
2원 3원 교차표의 시각화(빈도수 기반)
mosaic(Titanic)
mosaic(Titanic, shade=TRUE, legend=TRUE)
mosaic(HairEyeColor, shade=TRUE, legend=TRUE)
strucplot(Titanic, pop=FALSE)
grid.edit("rect:Class=1st, Sex=Male, Age=Adult, Survived=Yes", gp=gpar(fill="red"))